home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / debian_DSA-066.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  63 lines

  1. # This script was automatically generated from the dsa-066
  2. # Debian Security Advisory
  3. # It is released under the Nessus Script Licence.
  4. # Advisory is copyright 1997-2004 Software in the Public Interest, Inc.
  5. # See http://www.debian.org/license
  6. # DSA2nasl Convertor is copyright 2004 Michel Arboi
  7.  
  8. if (! defined_func('bn_random')) exit(0);
  9.  
  10. desc = '
  11. Steven van Acker reported on bugtraq that the version of cfingerd (a
  12. configurable finger daemon) as distributed in Debian GNU/Linux 2.2
  13. suffers from two problems:
  14.  
  15.  
  16. The code that reads configuration files (files in which $ commands are
  17.    expanded) copied its input to a buffer without checking for a buffer
  18.    overflow. When the ALLOW_LINE_PARSING feature is enabled that code
  19.    is used for reading users\' files as well, so local users could exploit
  20.    this.
  21.  
  22. There also was a printf call in the same routine that did not protect
  23.    against printf format attacks.
  24.  
  25.  
  26. Since ALLOW_LINE_PARSING is enabled in the default /etc/cfingerd.conf
  27. local users could use this to gain root access.
  28.  
  29. This has been fixed in version 1.4.1-1.2, and we recommend that you upgrade
  30. your cfingerd package immediately.
  31.  
  32.  
  33.  
  34. Solution : http://www.debian.org/security/2001/dsa-066
  35. Risk factor : High';
  36.  
  37. if (description) {
  38.  script_id(14903);
  39.  script_version("$Revision: 1.4 $");
  40.  script_xref(name: "DSA", value: "066");
  41.  script_cve_id("CAN-2001-0735");
  42.  script_bugtraq_id(2914, 2915);
  43.  
  44.  script_description(english: desc);
  45.  script_copyright(english: "This script is (C) 2004 Michel Arboi");
  46.  script_name(english: "[DSA066] DSA-066-1 cfingerd");
  47.  script_category(ACT_GATHER_INFO);
  48.  script_family(english: "Debian Local Security Checks");
  49.  script_dependencies("ssh_get_info.nasl");
  50.  script_require_keys("Host/Debian/dpkg-l");
  51.  script_summary(english: "DSA-066-1 cfingerd");
  52.  exit(0);
  53. }
  54.  
  55. include("debian_package.inc");
  56.  
  57. w = 0;
  58. if (deb_check(prefix: 'cfingerd', release: '2.2', reference: '1.4.1-1.2')) {
  59.  w ++;
  60.  if (report_verbosity > 0) desc = strcat(desc, '\nThe package cfingerd is vulnerable in Debian 2.2.\nUpgrade to cfingerd_1.4.1-1.2\n');
  61. }
  62. if (w) { security_hole(port: 0, data: desc); }
  63.